home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / advbas40.arc / ADVBAS.NEW < prev    next >
Text File  |  1987-12-13  |  12KB  |  245 lines

  1. ADVBAS 4.0, 12/15/87: (QB4 compatibility)
  2.  
  3.      The good folks at HCSI have allowed me to "bend" my contract with
  4.      them, so I could continue to support ADVBAS users by making ADVBAS
  5.      compatible with QuickBASIC 4.0.  This version of ADVBAS comes with a
  6.      version of the library (ADVBAS.QLB) for the QB4 environment.  All
  7.      routines have been updated to work with QuickBASIC 4.0, with a few
  8.      exceptions (see WARNING.TXT for more information).  See also
  9.      PROBAS.DOC for information on the new version of the commercial
  10.      library, ProBas 2.0, which is much more powerful than ADVBAS.
  11.  
  12.  
  13. ADVBAS 3.42, 10/24/87:
  14.  
  15.      Minor release-- bug fixes and minor updates.
  16.  
  17.  
  18. ADVBAS 3.41, 09/09/87:
  19.  
  20.      Minor release-- bug fixes and minor updates.
  21.  
  22.  
  23. ADVBAS 3.4, 05/01/87:
  24.  
  25.      Two utilities/demos have been added.  These operate on programs in
  26.      interpreted BASIC format-- every line with a line number. COMBLINE
  27.      will combine lines for maximum density.  XREF will provide a cross
  28.      reference of variables or line numbers.
  29.  
  30.  
  31. ADVBAS 3.3, 04/14/87: (ADVBAS Frozen, commercial ProBas introduced)
  32.  
  33.      A new modem status routine, CARRIER, lets you check the Carrier
  34.      Detect.  To ease those data-entry woes, STRIPBLANKS allows you to
  35.      strip the blanks (and control characters) off either the left or
  36.      right side of a string, or both.  A bug in MAKEWINDOW dealing with
  37.      shadowed windows has been fixed.  A cross-reference listing of where
  38.      ADVBAS routines are located inside source and object files is now
  39.      included (ADVBAS.XRF).  The manual, ADVBAS.DOC, has been reformatted
  40.      to allow binding.  See PROBAS.DOC for info on the new library.
  41.  
  42.  
  43. ADVBAS 3.2, 03/16/87:
  44.  
  45.      You can check for the existence of a subdirectory with SUBEXIST
  46.      (drive spec allowed).  COPYFILE will let you copy a file faster than
  47.      the system COPY command, and without having to do a SHELL.  A drive
  48.      status function, DISKSTAT, has been provided.  This allows you to
  49.      find out such information as the number of bytes in a cluster, the
  50.      amount of free space left on a drive, total space available on a
  51.      drive, etc. Routines to convert the time or date from numbers to a
  52.      string and vice versa have been added (DATEN2S, DATES2N, TIMEN2S, and
  53.      TIMES2N).  For AT machines only, GETEXTM will return the amount of
  54.      extended memory in kilobytes.  BLOCKMOVE will let you move a block of
  55.      memory from one location to another.  DATASEG will retrieve the value
  56.      of the current data segment.
  57.  
  58.  
  59. ADVBAS 3.1, 03/07/87:
  60.  
  61.      Time/date compression has been added.  DATE2INT and INT2DATE allow
  62.      you to convert a date to a single integer and back.  TIME2INT and
  63.      INT2TIME do the same with the time.  Given a month number, MONTH will
  64.      return the name of the month.  SPEAKER will enable you to toggle
  65.      sound effects on and off, without changing the timing of the affected
  66.      routines.  TINSTR lets you search a string for a character of a given
  67.      type, rather than a specific character.  You can search for any
  68.      combination of Alphabetic, Numeric, Symbolic, Control, Graphics, or
  69.      Blank characters, or their opposites.  The DTR function lets you
  70.      turn the communications signal DTR on or off.
  71.  
  72.  
  73. ADVBAS 3.0, 02/04/87: (Second Anniversary Edition)
  74.  
  75.      Many of the existing ADVBAS routines have been further optimized.
  76.      MMCHECK will now return the number of mouse buttons available as well
  77.      as a mouse status check.  GETKBD and SETKBD allow you to get/set the
  78.      states of the keyboard toggles: insert, caps lock, num lock, and
  79.      scroll lock.  GETCRT tells you whether the display is color or
  80.      monochrome.  CLRKBD clears any pending characters from the keyboard
  81.      buffer.  DELAY18TH and DELAY allow you to delay for a given time
  82.      interval, independent of machine type.  CALCATTR calculates the
  83.      color/attribute for routines such as XQPRINT.  Unlike the BASIC
  84.      formula it replaces, it allows use of the "blink" attribute.  SHIFTL
  85.      and SHIFTR let you perform binary shifts on integers.  It is now
  86.      possible to have low-res graphics on any monitor, using the SETPOINT,
  87.      RESETPOINT and TESTPOINT routines.  These give you 80 column by 50
  88.      row graphics in text mode.  Finally, MAKEWINDOW has been converted
  89.      from BASIC to a normal ADVBAS routine (in assembly language) for
  90.      extra speed and convenience.
  91.  
  92.  
  93. ADVBAS 2.9, 01/12/87:
  94.  
  95.      Mouse control has been added.  You can see if a mouse exists, get or
  96.      set the location of the mouse cursor, check the status of the mouse
  97.      buttons in two different ways, and set a legal range for the mouse
  98.      cursor, using the MM series of functions (MMBUTTON, MMCHECK, MMCLICK,
  99.      MMGETLOC, MMSETLOC, MMSETRANGE).  Expanded memory checking has been
  100.      added-- you can see if it exists, and if so, how much memory there is
  101.      and how much of it is free (GETLIMM).  Finally, a BASIC subprogram to
  102.      generate pop-up windows (MAKEWINDOW) has been included.  This is
  103.      based on Dave Evers' fine BASWIND routine, with assorted improvements.
  104.      The screen routines QPRINT, XQPRINT, SCRSAVE, SCRREST, GETSCREEN and
  105.      PUTSCREEN have been modified to automatically use high-speed mode
  106.      with monochrome adapters.  Their speed with color adapters has also
  107.      been increased.  Object code for all routines has been included,
  108.      along with information on automating library production.  This will
  109.      allow y'all to produce custom libraries using either the standard LIB
  110.      format or the QuickBASIC 2.0 BUILDLIB format.  This has been added
  111.      for your convenience-- please do not abuse it!  You may create custom
  112.      libraries for your own personal use.  You may -not- distribute them!
  113.  
  114.  
  115. ADVBAS 2.8, 12/28/86:
  116.  
  117.      Assorted file control functions have been added.  MLOAD is a BLOAD
  118.      command for compilers which don't include it.  EXIST lets you test
  119.      for the existence of a given file.  A set of new file I/O functions
  120.      allow low-level control of file access.  Among other advantages,
  121.      these functions allow file handling in subprograms (since error codes
  122.      are returned at the time of error, rather than triggering an error
  123.      trap) and support file-level networking/multitasking control (whereas
  124.      BASIC only supports record-level control).  These functions include
  125.      FCREATE and FOPEN to open files, FREAD and FWRITE to access them,
  126.      FSETEND and FSETREC to move the file pointer, and FCLOSE to close the
  127.      file.
  128.  
  129.  
  130. ADVBAS 2.7, 10/18/86:
  131.  
  132.      A new version of the library has been added which is fully compatible
  133.      with the QuickBASIC v2.0 programming environment.  Much of ADVBAS has
  134.      been overhauled to make it faster and more compact.  New functions:
  135.      EQUIPMENT will give you information about the hardware you're running
  136.      on (memory and number of various kinds of ports).  PRINTSCREEN
  137.      duplicates the function of pressing Shift-PrtSc on the keyboard.
  138.      GETSCREEN and PUTSCREEN are new, comprehensive screen save/restore
  139.      functions.  GETSCREEN allows you to save any part of the screen to an
  140.      array, using any screen page, with either flicker-free or fast access
  141.      methods.  PUTSCREEN is the corresponding restore-screen function.  It
  142.      allows you to put a saved area onto any part of the screen, any
  143.      screen page, with either flicker-free or fast access.  DOSINKEY lets
  144.      you get keypresses from the DOS standard input device.  Combined with
  145.      DMPRINT, this allows you to use such DOS features as I/O redirection
  146.      and CTTY with compiled BASIC programs.
  147.  
  148.  
  149. ADVBAS 2.6, 9/19/86:
  150.  
  151.      XQPRINTD will allow you to print to the screen using direct screen
  152.      writes.  This is the fastest possible print method, but will produce
  153.      snow on some color displays if you are printing to the active display
  154.      page.  SCRRESTP and SCRSAVEP will allow you to save and restore any
  155.      screen page to/from an array.  SCRRESTPD and SCRSAVEPD will do the
  156.      same using direct screen reads/writes (see note at XQPRINTD).
  157.      SETCOMM will allow you to reset the parameters on an open communi-
  158.      cations "file" without having to close the file (and thus drop the
  159.      DTR signal) first.  In addition, it lets you set the baud rate to
  160.      speeds beyond the normal limitation of 9600 bps.
  161.  
  162.  
  163. ADVBAS 2.5, 8/04/86:
  164.  
  165.      DMPRINT now allows screen display directly through MS-DOS output.
  166.      This differs from MPRINT, which uses some BIOS routines.  It is a
  167.      less sophisticated (and hence faster) routine than MPRINT.  XQPRINT
  168.      and RECOLOR screen flicker (on color monitors) has been wiped out,
  169.      thanks to Steven Gibson.  This and the other direct-access screen
  170.      routines have been modified so as to cause less interference with
  171.      interrupts.  The manual, ADVBAS.DOC, has been reformatted so it will
  172.      print correctly on most printers.
  173.  
  174.  
  175. ADVBAS 2.4, 7/21/86:
  176.  
  177.      Functions have been added to convert numbers from one base to another
  178.      (DEC2ANY, ANY2DEC), and incidentally to allow use of unsigned
  179.      integers in your programs, with some twiddling.  Space compression
  180.      has been added via BSQ, BUSQLEN and BUSQ, which allow you to compress
  181.      text information.  Space savings range from a reliable 16% for normal
  182.      text, to up around 50% for files with many blanks (such as structured
  183.      C, Pascal, or assembly files).
  184.  
  185.  
  186. ADVBAS 2.3, 06/28/86:
  187.  
  188.      You can now set a file's time/date stamp using SETFTD.  A host of
  189.      functions which allow you access to disk directories has been added,
  190.      giving the ability to search for a file using wildcards, or to
  191.      duplicate the DOS directory command: FINDFIRSTF, FINDNEXTF, GETNAMEF,
  192.      GETATTRF, GETDATEF, GETTIMEF, GETSIZEF.  The manual has been revised
  193.      to list functions in alphabetical order, allowing the elimination of
  194.      the index.  This file, ADVBAS.NEW, is now listed in reverse
  195.      chronological order, so the newest things come first instead of at
  196.      the end.
  197.  
  198.  
  199. ADVBAS 2.2, 06/20/86:
  200.  
  201.      Character insert/delete support for windows was added via MINSCHR and
  202.      MDELCHR.  This can also be used to simulate left and right scrolling
  203.      of a window.  The day of the week can now be gotten using WEEKDAY.
  204.      The most interesting new function is SOUNDEX, which returns the
  205.      soundex code of a word.  Soundex codes allow you to identify similar
  206.      sounding words, so that you could do a phone directory search that
  207.      matches on the sound of a name rather than the precise spelling, for
  208.      instance.
  209.  
  210.  
  211. ADVBAS 2.1, 06/14/86:
  212.  
  213.      Window handling was added.  The MPRINT and MPRINTC routines can now
  214.      be set to conform to screen windows, via the MWINDOW function.
  215.  
  216.  
  217. ADVBAS 2.0, 03/28/86:
  218.  
  219.      Four functions were added.  KEYPRESS tells you if a key is waiting in
  220.      the keyboard input buffer.  RECOLOR quickly resets all characters on
  221.      the screen with a given color/attribute to a new color/attribute
  222.      (text mode only).  SETMATI sets the first "x" elements of an integer
  223.      array to a given value.  ADDMATI adds or subtracts a given value from
  224.      the first "x" elements of an integer array.  The documentation now
  225.      includes notes on how PC-compatible a machine needs to be before any
  226.      given routine will work on it.
  227.  
  228.  
  229. ADVBAS 1.9, 12/12/85:
  230.  
  231.      XLATE will now work with a string as well as single characters.
  232.      MPRINT will work with a string, replacing the old MPRINTC which could
  233.      only print out a single character at a time.  The functions
  234.      STRIPRANGE, REVERSE, LROTATE, RROTATE, EXTRACT, READBITF and
  235.      WRITEBITF have been added.  The documentation now includes a
  236.      reference listing of the ADVBAS functions.
  237.  
  238.  
  239. ADVBAS 1.8:  Not released to the public.
  240.  
  241.  
  242. ADVBAS 1.7, 11/28/85:
  243.  
  244.      The functions DELCHR and INSCHR have been added.
  245.